home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PPC1B3AA.ZIP / SYNCHRO.PPS < prev    next >
Text File  |  1996-08-29  |  671b  |  22 lines

  1. ;----------------------------------------------------------------------------
  2. ; Copyright(C) 1996, The AEGiS Corporation
  3. ;----------------------------------------------------------------------------
  4. ;
  5. ; PROCEDURE Synchro()
  6. ;
  7. ; Synchronizes the PPE with the remote user. This procedures wait for all
  8. ; data to be sent to modem, this means 2400 bps users will not have modem
  9. ; buffer overflows.
  10. ;
  11. ;----------------------------------------------------------------------------
  12. #lib
  13. Declare Procedure Synchro()
  14.  
  15. ;----------------------------------------------------------------------------
  16. Procedure Synchro()
  17.  
  18. While (OutBytes() > 1) Do
  19. EndWhile
  20.  
  21. EndProc
  22.